home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Multimedia Viewer How-To CD / Microsoft Multimedia Viewer How-To CD.iso / mvsample / progsamp / eplist / graphics.h < prev    next >
Text File  |  1993-03-21  |  399b  |  11 lines

  1. // GRAPHICS.H -- Misc. graphics routines
  2.  
  3. #define RGBBlack    RGB(0, 0, 0)
  4. #define RGBWhite    RGB(255, 255, 255)
  5. #define RGBLtGray   RGB(192,192,192)
  6. #define RGBDkGray   RGB(84,84,84)
  7.  
  8. HFONT MakeFont(HDC hdc, LPSTR lpszFace, WORD wSize);
  9. int RectBorder(HDC hDC, LPRECT lprc, int nWidth);
  10. void DrawList(HDC hdc, int x, int y, LPRECT lprc, LPSTR FAR *lplist, int nTop, int nCur, int nMax);
  11.